home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-12-05 | 658 b | 29 lines |
- # Nmake macros for building Windows 32-Bit apps
-
- TARGETOS=BOTH
- APPVER=4.0
-
- all:progress.exe
-
- !include <win32.mak>
-
- # Update the resource if necessary
-
- progress.res: progress.rc resource.h
- $(rc) $(rcvars) $(rcflags) progress.rc
-
- # Update the object file if necessary
-
- progress.obj: progress.cpp
- $(cc) $(cflags) $(cvars) $(cdebug) progress.cpp
-
- # Update the executable file if necessary, and if so, add the resource back in.
-
- progress.exe: progress.obj progress.res
- $(link) $(ldebug) $(lflags) -out:progress.exe progress.obj progress.res $(olelibs) urlmon.lib uuid3.lib
-
- clean:
- del *.exe
- del *.obj
- del *.res
-